home *** CD-ROM | disk | FTP | other *** search
- VERSION 4.00
- Begin VB.Form FormStep1
- Caption = "Mail eXtension Step #2"
- ClientHeight = 5295
- ClientLeft = 1590
- ClientTop = 1620
- ClientWidth = 6735
- Height = 5670
- Left = 1545
- LinkTopic = "Form1"
- ScaleHeight = 5295
- ScaleWidth = 6735
- Top = 1290
- Width = 6825
- Begin VB.PictureBox Picture1
- Align = 2 'Align Bottom
- Height = 495
- Left = 0
- ScaleHeight = 465
- ScaleWidth = 6705
- TabIndex = 0
- Top = 4800
- Width = 6735
- Begin VB.Label szStatus
- Caption = "No Active Session"
- Height = 255
- Left = 120
- TabIndex = 3
- Top = 120
- Width = 4695
- End
- End
- Begin Threed.SSPanel SSPanel1
- Align = 1 'Align Top
- Height = 1095
- Left = 0
- TabIndex = 1
- Top = 0
- Width = 6735
- _Version = 65536
- _ExtentX = 11880
- _ExtentY = 1931
- _StockProps = 15
- BackColor = 12632256
- BevelInner = 1
- Begin Threed.SSCommand SSCommand1
- Height = 855
- Left = 120
- TabIndex = 2
- Top = 120
- Width = 1215
- _Version = 65536
- _ExtentX = 2143
- _ExtentY = 1508
- _StockProps = 78
- Caption = "Login cc:Mail"
- Picture = "OCXSTEP2.frx":0000
- End
- End
- Begin Mailx16Lib.MForm MForm1
- Left = 480
- Top = 4440
- _Version = 65541
- _ExtentX = 10398
- _ExtentY = 500
- _StockProps = 0
- MXFormName = "FormTag2"
- End
- Begin Mailx16Lib.MSess MSess1
- Left = 120
- Top = 3840
- _Version = 65541
- _ExtentX = 900
- _ExtentY = 900
- _StockProps = 0
- Mail_Type = 2
- DisplayErrors = 0 'False
- End
- Begin Mailx16Lib.MMsg MMsg1
- Left = 120
- Top = 3000
- _Version = 65541
- _ExtentX = 900
- _ExtentY = 900
- _StockProps = 0
- MarkAsRead = 0 'False
- DisplayErrors = 0 'False
- BindString = "MSess1"
- End
- Begin TabDlg.SSTab SSTab1
- Height = 3255
- Left = 360
- TabIndex = 4
- Top = 1200
- Width = 6135
- _Version = 65536
- _ExtentX = 10821
- _ExtentY = 5741
- _StockProps = 15
- Caption = "Inbox Messages"
- TabsPerRow = 5
- Tab = 0
- TabOrientation = 0
- Tabs = 1
- Style = 1
- TabMaxWidth = 0
- TabHeight = 529
- TabCaption(0) = "Inbox Messages"
- Tab(0).ControlCount= 3
- Tab(0).ControlEnabled= -1 'True
- Tab(0).Control(0)= "Outline1"
- Tab(0).Control(1)= "Label1"
- Tab(0).Control(2)= "szTotal"
- Begin VB.Label szTotal
- Height = 255
- Left = 2040
- TabIndex = 7
- Top = 2880
- Width = 1935
- End
- Begin VB.Label Label1
- Caption = "Total Inbox Messages:"
- Height = 255
- Left = 240
- TabIndex = 6
- Top = 2880
- Width = 1695
- End
- Begin MSOutl.Outline Outline1
- Height = 2295
- Left = 240
- TabIndex = 5
- Top = 480
- Width = 5655
- _Version = 65536
- _ExtentX = 9975
- _ExtentY = 4048
- _StockProps = 77
- BackColor = 16777215
- MouseIcon = "OCXSTEP2.frx":0452
- PicturePlus = "OCXSTEP2.frx":046E
- PictureMinus = "OCXSTEP2.frx":05E0
- PictureLeaf = "OCXSTEP2.frx":0752
- PictureOpen = "OCXSTEP2.frx":08C4
- PictureClosed = "OCXSTEP2.frx":0A36
- End
- End
- Attribute VB_Name = "FormStep1"
- Attribute VB_Creatable = False
- Attribute VB_Exposed = False
- Private Sub SSCommand1_Click()
- MSess1.Logon = True
- If MSess1.Logon = True Then
- szStatus = "Active cc:Mail Session"
- Else
- szStatus = "No Active Session"
- End If
- Refresh_Inbox
- End Sub
- Public Sub Refresh_Inbox()
- If MSess1.Logon = True Then
- szTotal = MMsg1.MsgCount
- Else
- szTotal = 0
- End If
- End Sub
-